type runtime.bucket
21 uses
runtime (current package)
heapdump.go#L599: func dumpmemprof_callback(b *bucket, nstk uintptr, pstk *uintptr, size, allocs, frees uintptr) {
mheap.go#L1865: b *bucket
mheap.go#L1869: func setprofilebucket(p unsafe.Pointer, b *bucket) {
mprof.go#L49: type bucket struct {
mprof.go#L50: next *bucket
mprof.go#L51: allnext *bucket
mprof.go#L142: mbuckets *bucket // memory profile buckets
mprof.go#L143: bbuckets *bucket // blocking profile buckets
mprof.go#L144: xbuckets *bucket // mutex profile buckets
mprof.go#L145: buckhash *[buckHashSize]*bucket
mprof.go#L163: func newBucket(typ bucketType, nstk int) *bucket {
mprof.go#L164: size := unsafe.Sizeof(bucket{}) + uintptr(nstk)*unsafe.Sizeof(uintptr(0))
mprof.go#L174: b := (*bucket)(persistentalloc(size, 0, &memstats.buckhash_sys))
mprof.go#L182: func (b *bucket) stk() []uintptr {
mprof.go#L188: func (b *bucket) mp() *memRecord {
mprof.go#L197: func (b *bucket) bp() *blockRecord {
mprof.go#L206: func stkbucket(typ bucketType, size uintptr, stk []uintptr, alloc bool) *bucket {
mprof.go#L208: buckhash = (*[buckHashSize]*bucket)(sysAlloc(unsafe.Sizeof(*buckhash), &memstats.buckhash_sys))
mprof.go#L363: func mProf_Free(b *bucket, size uintptr) {
mprof.go#L618: func record(r *MemProfileRecord, b *bucket) {
mprof.go#L639: func iterate_memprof(fn func(*bucket, uintptr, *uintptr, uintptr, uintptr, uintptr)) {